footer {
    margin-top: 10rem;
    width: 100%;
    height: 25rem;
    background-color: rgb(27, 27, 27);
}

.footermaincontent {
    margin-left: 15%;
    margin-right: 15%;
    display: flex;
}

.footermaincontent h3{
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    color: rgb(255, 217, 0);
}

.footermaincontent a{
    font-size: 20px;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: rgb(207, 205, 205);
}

.footermainbox1 {
    flex: 25%;
}

.footermainbox1 span{
    color: black;
}


.footermainbox1 img{
    margin-top: -50px;
    margin-bottom: -130px;
    margin-left: -50px;
    width: 400px;
    height: 350px;
}

.footermainbox1 button{
    background-color: rgb(255, 217, 0);
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.footermainbox2 {
    margin-left: 50px;
    margin-top: 60px;
    flex: 25%;
}

.footermainbox2 div{
    display: block;
}

.footermainbox3 {
    margin-top: 60px;
    flex: 25%;
}

.footermainbox4 {
    margin-top: 60px;
    flex: 25%;
}

.footermainbox4 span{
    color: rgb(255, 217, 0);
}

.allright {
    border-top: 1px solid black;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    padding: 7px;
    color: rgb(207, 205, 205);
    text-align: center;
    background-color: rgb(0, 0, 0);
}

@media (max-width: 1400px) {
    .footermaincontent {
        margin-left: 5%;
        margin-right: 5%;
        display: flex;
    }
}

@media (max-width: 1000px) {

    footer {
        margin-top: 10rem;
        width: 100%;
        height: unset;
        padding-bottom: 25px;
        background-color: rgb(27, 27, 27);
    }

    .footermaincontent {
        display: grid;
        grid-template-columns: auto auto;
    }
}

@media (max-width: 600px) {

    footer {
        margin-top: 10rem;
        width: 100%;
        height: unset;
        padding-bottom: 25px;
        background-color: rgb(27, 27, 27);
    }

    .footermaincontent {
        display: unset;
        grid-template-columns: auto auto;
    }

    .footermainbox2 {
        margin-left: 20px;
        margin-top: 60px;
        flex: 25%;
    }

    .footermainbox3 {
        margin-left: 20px;
        margin-top: 60px;
        flex: 25%;
    }
    
    .footermainbox4 {
        margin-left: 20px;
        margin-top: 60px;
        flex: 25%;
    }
}


